home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
cmln0386.arc
/
TURBO1.LTG
< prev
next >
Wrap
Text File
|
1986-03-03
|
1KB
|
30 lines
Listing 1
(*---------------------------------------------------------------------
! !
! Runsym !
! !
! Test Driver for Symtab !
! !
!--------------------------------------------------------------------*)
Program Runsym;
(*$ISymtab.Pas*)
Var
Testsym : String [25]; (* Actual Parameter *)
Outsym : Integer;
Begin
Syminit; (* Initialize Table *)
Testsym := 'Omicron';
Outsym := Symtabin (Testsym); (* Add a symbol *)
Writeln (Testsym,' ', Outsym);
Writeln (Symtab.Symtable[Outsym],' ',Outsym);
End.